home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 111_01 / bc.doc < prev    next >
Text File  |  1985-08-19  |  896b  |  26 lines

  1.                           BC
  2.  
  3. BC is a byproduct of an 8088/86 cross-assembler I am writing.
  4. It is a 16-bit Binary Calculator with some limitations.
  5. The expression analyzer, which is in BCANLYZ.C, is recursive,
  6. to handle almost any (practical) nesting of parentheses. 
  7. The operator precedence is strictly left to right, so
  8. use parentheses to get things done the way you want.
  9.  
  10. Files needed:    BC.C       (main module)
  11.         BCANLYZ.C  (expression analyzer)
  12.         BCDEF.H    (external definitions)
  13.  
  14. To compile:    CC BC.C
  15.         CC BCANLYZ.C
  16.         CLINK BC BCANLYZ
  17.  
  18. Jan Larsson
  19. Kosterv. 12
  20. S-181 35 Lidingo
  21. SWEDEN
  22.  
  23. ---------------------------------------------------------------
  24. This file revised 26 Dec 83 by John M. Smith,
  25. CUG librarian for the Utilities IV library diskette.
  26.